@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Alegreya+Sans+SC:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Anta&family=Bagel+Fat+One&family=Bebas+Neue&family=Bruno+Ace&family=Hachi+Maru+Pop&family=Holtwood+One+SC&family=Jersey+10&family=Julius+Sans+One&family=Koulen&family=Mansalva&family=Marcellus+SC&family=New+Amsterdam&family=Orbitron:wght@400..900&family=Oswald:wght@200..700&family=Overlock+SC&family=Tiny5&family=Waiting+for+the+Sunrise&family=Walter+Turncoat&family=Ysabeau+SC:wght@1..1000&family=Zen+Dots&family=Zeyada&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

/* INTRO SCREEM | INTRO O CARGA DE LA PAGINA*/
.SPLSHINTO{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.SPLSHINTO.display-none{
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    z-index: -10;
    column-gap: normal;
    transition: all 0.5s;
}

.LGSPLSHITO{
    opacity: 0;
    width: 160px;
    animation: fadeIn .3s infinite alternate;
}

.TXTLG{
    font-size: 2.5rem;
    font-weight: 500;
    font-family: "Bebas Neue", sans-serif;
    animation: fadeIn 0.3s infinite alternate;
}

@keyframes fadeIn{
    0%, 100%{opacity: 1;}
    5%{opacity: 0;}
    15%{opacity: .4;}
    0%{opacity: 1;}
    85%{opacity: 1;}
    90%{opacity: 1;}
    95%{opacity: .6;}
    100%{opacity: 0;}
}

/* ANIMACION DE SCROLL */

.center{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    padding-bottom: 20px;
}

.mouse{
    display:flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid white;
}

.mouse:after{
    content: '';
    display: flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    animation: move 1.3s ease-out infinite forwards;
}

@keyframes move {
    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(10px);
    }

    100%{
        transform: translateY(0);
    }
}

.caption h1{
    font-size: 14px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 100;
    margin-left: 12px;
}


/* ALGOO MAS */
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: black;
    color: #e7e7e7;
    min-height: 100vh;
    line-height: 1.5;
}

/* IMAGEN DE FONDO */
.IMGGRDNT{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.3;
}

.LYRBLR{
    height: 0;
    width: 30rem;
    position: absolute;
    top: 20%;
    right: 0;
    box-shadow: 0 0 700px 15px rgb(160, 160, 160);
    rotate: -30deg;
}

/* LINEA DE SEPARACION */
.LNDSPRCN{
    width: 100%;
    position: relative;
    height: 1px;
    margin-bottom: 1.2rem;
    background-color: #1b1b1b;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
}

/* contenido de la pagina */

.CNTN{
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

/* HEADER [MENU]*/
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    z-index: 999;
}

header a{
    text-decoration: none;
    color: white;
    z-index: 999;
}

.LGTXTMN{
    display: flex;
    align-items: center;
    justify-content: center;
}

.LGTXTMN a h1{
    margin: 0;
    font-size: 2.5rem;
    font-weight: 500;
    font-family: "Bebas Neue", sans-serif;
}

.LBOO1{
    width: 40px;
}

nav{
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: -5%;
    z-index: 999;
}

nav a{
    font-size: 1.2rem;
    display: flex;
    letter-spacing: 0.1rem;
    transition: color 0.2s ease;
    text-decoration: none;
    color: inherit;
    font-family: "New Amsterdam", sans-serif;
    font-weight: 500;
}

.IMGICNS{
    width: 20px;
    margin-right: 8px;
}

nav a:hover{
    color: #a7a7a7;
}

.BTSP1{
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    border: none;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
    cursor: pointer;
    z-index: 999;
}

.BTSP1 .ICNSP1{
    margin-right: 6px;
    margin-bottom: 4px;
    width: 22px;
}

.TBX{
    position: relative;
    width: 9rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #ffff00, #ffa200, #ff5d00, #ffa200, #ffff00);
    background-size: 200%;
    animation: animationGradient 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    z-index: 999;
}

.TBX .TAG{
    position: absolute;
    inset: 3px 3px 3px 3px;
    background-color: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    cursor: pointer;
}

@keyframes animationGradient{
    to {
        background-position: 200%;
    }
}

/* INFORMACION PRINCIPAL */

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(90vh - 6rem);
}

.CNT2INF{
    max-width: 40rem;
    margin-left: 10%;
    z-index: 999;
}

.TTL{
    display: grid;
}

.TTLRGB {
    font-family: "Bebas Neue", sans-serif;
    margin: 0;
    font-size: 4rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffff00, #ffa200, #ff5d00, #ffa200, #ffff00);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animateGradienteTex 2.5s linear infinite;
}

@keyframes animateGradienteTex{
    to{
        background-position: 200%;
    }
}

.TTLNML{
    font-family: "Bebas Neue", sans-serif;
    font-size: 4rem;
}

.DCPTN{
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    max-width: 35rem;
    color: rgb(160, 160, 160);
    font-family: "Oswald", sans-serif;
    margin-top: 1.2rem;
}

.BTNSDSCRIP {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    margin-top: 3rem;
}

.DSCRDBTN{
    width: 170px;
    height: 60px;
    border-radius: 32px;
    padding-right: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-color: white;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.4);
}

.BTNDSCD{
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    padding-left: 1.2rem;
    color: black;
}

.LGDSCRD{
    width: 50px;
    height: 50px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #ffff00, #ffa200, #ff5d00, #ffa200, #ffff00);
    background-size: 200%;
    animation: rgbdiscord 2.5s linear infinite;
}

@keyframes rgbdiscord{
    to{
        background-position: 200%;
    }
}

.LGDSCRD a img{
    width: 35px;
    padding-top: 4px;
    padding-left: 4px;
}

.CPIP{
    background-color: RED;
}

#CPLNK{
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    cursor: pointer;
}

/* MODELOS 3D */

.L3D{
    position: absolute;
    top: 0;
    right: -25%;
}

/* SLIDER [LOGOS / SOCIOS]*/
.slider{
    margin-top: 60px;
    width: 100%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
}

.slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .list .item{
    width: var(--width);
    height: var(--height);
    opacity: .7;
    position: absolute;
    left: 100%;
    animation: autoRun 6s linear infinite;
    animation-delay: calc((10s / var(--quantity)) * (var(--position) - 1)) 
}

.slider .list .item img{
    width: 60%;
}

@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}

/* SLIDER MODOS DE JUEGOS */

.SLDRMODS{
    margin-top: 50px;
    width: 100%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
}

.SLDRMODS .LSMDS{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.SLDRMODS .LSMDS .ITMDS{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 6s linear infinite;
    animation-delay: calc((10s / var(--quantity)) * (var(--position) - 1)) 
}

.SLDRMODS .LSMDS .ITMDS h1{
    font-size: 40px;
    color: white;
}

@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}

/* SECCION DE INFORMACION SERVER */

.INFSCCN{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 100px;
}

.INFSCCN h3{
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
    background: linear-gradient(to right, #ffff00, #ffa200, #ff5d00, #ffa200, #ffff00);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animateGradienteTex 2.5s linear infinite;
    
}

.INFSCCN p{
    font-family: "New Amsterdam", sans-serif;
    font-weight: 100;
    font-size: 16px;
    text-align: center;
    color: rgb(204, 204, 204);
    max-width: 450px;
    line-height: 25px;
    margin-bottom: 50px;
}

.INFCDS{
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    width: 90%;
    height: 90%;
    margin-top: 30px;
}

.CRDS{
    position: relative;
    width: auto;
    height: 40vh;
    overflow: hidden;
    border: 1px solid gray;
    transition: 0.5s;
}

.CRDS h1{
    position: absolute;
    margin: 0;
    top: 10px;
    left: 5%;
    font-family: "Bebas Neue", sans-serif;
    font-size: 55px;
    font-weight: 900;
    z-index: 1;
    background: linear-gradient(to right, #ffff00, #ffa200, #ff5d00, #ffa200, #ffff00);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animateGradienteTex 2.5s linear infinite;
    max-width: 390px;
}

.CRDS p{
    position: absolute;
    font-family: "Oswald", sans-serif;
    font-weight: 100;
    font-size: 16px;
    top: 80px;
    left: 5%;
    z-index: 1;
    max-width: 250px;
    color: rgb(255, 255, 255);
}

.CRDS img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.CRDS:nth-child(1){
    grid-column: span 2;
}

.CRDS:nth-child(2){
    grid-row: span 2;
    height: 82vh;
}

/* FOOTER */

.BTNSFTRS{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.FTREND h1{
    text-align: center;
    margin-bottom: 20px;
}

.FTREND h2{
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 100;
    font-size: 20px;
}

.DSBTS a{
    margin: 10px 50px 20px 50px;
    width: 160px;
    height: 50px;
    border: 1px solid rgb(143, 143, 143);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: rgb(143, 143, 143);
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
}

.DSBTS a:hover{
    border: 1px solid white;
    color: white;
}

.INFFTRS h1{
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    font-weight: 100;
    color: rgb(63, 63, 63);
}

.INFFTRS h1 a{
    margin-left: 4px;
    background: linear-gradient(to right, #ffff00, #ffa200, #ff5d00, #ffa200, #ffff00);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animateGradienteTex 2.5s linear infinite;
}


/* AREA DE tablet PAGIN RESPONSIVE */

@media (max-width: 1300px){
    header{
        padding: 1rem;
    }

    .LBOO1{
        width: 50px;
    }

    .LGASN{
        display: none;
    }

    .L3D{
        display: none;
    }

    .TNDSP3D{
        display: none;
    }

}

/* AREA DE telefono PAGIN RESPONSIVE */

@media (max-width: 1030px){

    .center{
        display: none;
    }

    nav{
        display: none;
    }

    .TTLRGB{
        font-size: 2.5rem;
    }

    .TTLNML{
        font-size: 2.5rem;
    }

    .DCPTN{
        font-size: 0.8rem;
    }

    .BTNSDSCRIP{
        gap: 1rem;
    }

    .DSCRDBTN{
        padding-right: 0px;
    }

    .SLDRMODS .LSMDS .ITMDS h1{
        font-size: 30px;
    }

    .BTNDSCD{
        font-size: 1rem;
        padding-left: 0.5rem;
    }

    #CPLNK{
        font-size: 1.2rem;
    }

    .DSBTS a{
        margin: 10px 20px 20px 20px;
        width: 140px;
        height: 40px;
        font-size: 18px;
    }

    .INFSCCN h3{
        font-size: 40px;
    }

    .INFSCCN p{
        font-size: 14px;
    }

    .CRDS{
        height: 30vh;
    }

    .CRDS h1{
        font-size: 25px;
    }

    .CRDS p{
        font-size: 14px;
        top: 50px;
        left: 3%;
    }

    .CRDS:nth-child(2){
    grid-row: span 2;
    height: 63vh;
    }

    .slider .list .item img{
        width: 40%;
    }

    .FTREND h1{
        font-size: 25px;
    }

    .FTREND h2{
        font-size: 18px;
    }

    .INFFTRS h1{
        font-size: 15px;
    }

}